home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Cafe 3
/
Visual Cafe 3.ISO
/
Vcafe
/
Main.bin
/
LocaleElements_fr_LU.java
< prev
next >
Wrap
Text File
|
1998-09-22
|
959b
|
36 lines
/*
* @(#)LocaleElements_fr_LU.java 1.1 98/07/07
*
* (C) Copyright IBM Corp. 1998 - All Rights Reserved
*/
/**
* Table of Java supplied standard locale elements
* Created 19 May 1998
*/
// WARNING : the format of this file will change in the future!
package java.text.resources;
import java.util.ListResourceBundle;
public class LocaleElements_fr_LU extends ListResourceBundle {
/**
* Overrides ListResourceBundle
*/
public Object[][] getContents() {
return new Object[][] {
{ "LocaleString", "fr_LU" }, // locale id based on iso codes
{ "ShortCountry", "LUX" }, // iso-3 abbrev country name
{ "CurrencyElements",
new String[] {
"F", // local currency symbol
"LUF", // intl currency symbol
"," // monetary decimal separator
}
}
};
}
}